Skip to main content

An extremely fast Python package and project manager, written in Rust.

Project description

uv

An extremely fast Python package and project manager, written in Rust.

Shows a bar chart with benchmark results.

Installing Trio's dependencies with a warm cache.

Highlights

uv is backed by Astral, the creators of Ruff and ty.

Installation

Install uv with our standalone installers:

# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Or, from PyPI:

# With pip.
pip install uv
# Or pipx.
pipx install uv

If installed via the standalone installer, uv can update itself to the latest version:

uv self update

See the installation documentation for details and alternative installation methods.

Documentation

uv's documentation is available at docs.astral.sh/uv.

Additionally, the command line reference documentation can be viewed with uv help.

Features

Projects

uv manages project dependencies and environments, with support for lockfiles, workspaces, and more, similar to rye or poetry:

$ uv init example
Initialized project `example` at `/home/user/example`

$ cd example

$ uv add ruff
Creating virtual environment at: .venv
Resolved 2 packages in 170ms
   Built example @ file:///home/user/example
Prepared 2 packages in 627ms
Installed 2 packages in 1ms
 + example==0.1.0 (from file:///home/user/example)
 + ruff==0.5.0

$ uv run ruff check
All checks passed!

$ uv lock
Resolved 2 packages in 0.33ms

$ uv sync
Resolved 2 packages in 0.70ms
Checked 1 package in 0.02ms

See the project documentation to get started.

uv also supports building and publishing projects, even if they're not managed with uv. See the publish guide to learn more.

Scripts

uv manages dependencies and environments for single-file scripts.

Create a new script and add inline metadata declaring its dependencies:

$ echo 'import requests; print(requests.get("https://astral.sh"))' > example.py

$ uv add --script example.py requests
Updated `example.py`

Then, run the script in an isolated virtual environment:

$ uv run example.py
Reading inline script metadata from: example.py
Installed 5 packages in 12ms
<Response [200]>

See the scripts documentation to get started.

Tools

uv executes and installs command-line tools provided by Python packages, similar to pipx.

Run a tool in an ephemeral environment using uvx (an alias for uv tool run):

$ uvx pycowsay 'hello world!'
Resolved 1 package in 167ms
Installed 1 package in 9ms
 + pycowsay==0.0.0.2
  """

  ------------
< hello world! >
  ------------
   \   ^__^
    \  (oo)\_______
       (__)\       )\/\
           ||----w |
           ||     ||

Install a tool with uv tool install:

$ uv tool install ruff
Resolved 1 package in 6ms
Installed 1 package in 2ms
 + ruff==0.5.0
Installed 1 executable: ruff

$ ruff --version
ruff 0.5.0

See the tools documentation to get started.

Python versions

uv installs Python and allows quickly switching between versions.

Install multiple Python versions:

$ uv python install 3.12 3.13 3.14
Installed 3 versions in 972ms
 + cpython-3.12.12-macos-aarch64-none (python3.12)
 + cpython-3.13.9-macos-aarch64-none (python3.13)
 + cpython-3.14.0-macos-aarch64-none (python3.14)

Download Python versions as needed:

$ uv venv --python 3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

$ uv run --python pypy@3.8 -- python --version
Python 3.8.16 (a9dbdca6fc3286b0addd2240f11d97d8e8de187a, Dec 29 2022, 11:45:30)
[PyPy 7.3.11 with GCC Apple LLVM 13.1.6 (clang-1316.0.21.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>>

Use a specific Python version in the current directory:

$ uv python pin 3.11
Pinned `.python-version` to `3.11`

See the Python installation documentation to get started.

The pip interface

uv provides a drop-in replacement for common pip, pip-tools, and virtualenv commands.

uv extends their interfaces with advanced features, such as dependency version overrides, platform-independent resolutions, reproducible resolutions, alternative resolution strategies, and more.

Migrate to uv without changing your existing workflows — and experience a 10-100x speedup — with the uv pip interface.

Compile requirements into a platform-independent requirements file:

$ uv pip compile requirements.in \
   --universal \
   --output-file requirements.txt
Resolved 43 packages in 12ms

Create a virtual environment:

$ uv venv
Using Python 3.12.3
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

Install the locked requirements:

$ uv pip sync requirements.txt
Resolved 43 packages in 11ms
Installed 43 packages in 208ms
 + babel==2.15.0
 + black==24.4.2
 + certifi==2024.7.4
 ...

See the pip interface documentation to get started.

Contributing

We are passionate about supporting contributors of all levels of experience and would love to see you get involved in the project. See the contributing guide to get started.

FAQ

How do you pronounce uv?

It's pronounced as "you - vee" (/juː viː/)

How should I stylize uv?

Just "uv", please. See the style guide for details.

What platforms does uv support?

See uv's platform support document.

Is uv ready for production?

Yes, uv is stable and widely used in production. See uv's versioning policy document for details.

Acknowledgements

uv's dependency resolver uses PubGrub under the hood. We're grateful to the PubGrub maintainers, especially Jacob Finkelman, for their support.

uv's Git implementation is based on Cargo.

Some of uv's optimizations are inspired by the great work we've seen in pnpm, Orogene, and Bun. We've also learned a lot from Nathaniel J. Smith's Posy and adapted its trampoline for Windows support.

License

uv is licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in uv by you, as defined in the Apache-2.0 license, shall be dually licensed as above, without any additional terms or conditions.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uv-0.11.29.tar.gz (6.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

uv-0.11.29-py3-none-win_arm64.whl (25.7 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.29-py3-none-win_amd64.whl (27.6 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.29-py3-none-win32.whl (24.5 MB view details)

Uploaded Python 3Windows x86

uv-0.11.29-py3-none-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.29-py3-none-musllinux_1_1_i686.whl (26.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.29-py3-none-manylinux_2_31_riscv64.whl (26.4 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.29-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (26.3 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64musllinux: musl 1.1+ riscv64

uv-0.11.29-py3-none-manylinux_2_28_aarch64.whl (25.5 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (27.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (25.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7lmusllinux: musl 1.1+ ARMv7l

uv-0.11.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (25.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64musllinux: musl 1.1+ ARM64

uv-0.11.29-py3-none-macosx_11_0_arm64.whl (23.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.29-py3-none-macosx_10_12_x86_64.whl (24.8 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.29-py3-none-linux_armv6l.whl (25.9 MB view details)

Uploaded Python 3

File details

Details for the file uv-0.11.29.tar.gz.

File metadata

  • Download URL: uv-0.11.29.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29.tar.gz
Algorithm Hash digest
SHA256 a4ca34dc3b247740e511ca7c718181d5300e7899bbef755db45bb6c993610a64
MD5 7ef8301218a0f22bd6155d99b74efc9e
BLAKE2b-256 cb162a3783a1197b54036ab0a866f6283a091717491b1726a2f186c5c25a58e2

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-win_arm64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-win_arm64.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 e245e6f95f154ae56793bfc7742ec27334a546469bba4d09c03624470ab451d2
MD5 2e7a32ebe1b7c684c497e00aed9360c7
BLAKE2b-256 488f86a97f1e4c56bd0a300d5da3347b9762c94a95c2296ff8ce1fc043712d98

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-win_amd64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-win_amd64.whl
  • Upload date:
  • Size: 27.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 abc641b24be42dc5d62f63ecb3500c07a0fb3c596e407963708f59114f0816ad
MD5 bf2d309e70f971758a7c3529ad366183
BLAKE2b-256 83a202a3e74948f15440293723f183f38716c86328f0e234a9c733cce3bde12c

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-win32.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-win32.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-win32.whl
Algorithm Hash digest
SHA256 f7e4c709397468264764f571003fd278cbd384321f5c497370c28352bdb8b6a9
MD5 48b7ce619487d30ffdf986a200f40652
BLAKE2b-256 67200ce6e7fc55b245cc66342f1adc91803a85747988e82e44e1486f10d0196f

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 27.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 157ed0bcfef5aba9b53ff4b322e009b3261d83fbf5d9423e367a33c0416c85ac
MD5 0cef3966e08adbfd96a6188f35b957eb
BLAKE2b-256 b6b63498d9400e92d76b7e8352529ff6d3464843053a4a24e183d284c1ffed85

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-musllinux_1_1_i686.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 26.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 865f09f5de0c1913bf9ed424bcc5c1a15780d01debd4d62b8a22c8f3e9bdb420
MD5 ad8a565e2996ff796ff54e1345ce5cc0
BLAKE2b-256 00e21516e73f98eb7acbc94d0494bb0080c4ad7f74af6528443038fcf9998e8a

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 7d618b4a2ae2b367d20710858838344604d5b9e8c0863343d5f793142408ea11
MD5 fd8b11b7de9e3a58ef515346368f40f7
BLAKE2b-256 731ddf16af369a727e354d12d522b634788085593c61d46648ca88f241f47d74

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 26.3 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 91b5d1407ac8757e1757268e9d983e9e7b72eeb826808f9e2404344a6de1d3fb
MD5 9fed0897fc4a9f6b699c106d38fb282f
BLAKE2b-256 54f92b7658e1f664f53e27c2b7733d6a14023dd97500f70ecb8fc1b15e04006f

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b49e175bfbcd8ac1e09e06f0b9d544b9e671d2cdecf753aa3fbff4d61d19317
MD5 aeed7c258ba5ab66e50ae646e3c87edf
BLAKE2b-256 32233ec8bddbf007644457158cceacd9dbd06db596420fc81cbc22ea36a47106

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eec03a8b63d55915694db3af4e91324b39ced49e2aeac7af37851c7eb3f470ea
MD5 0f381bbbb28a1ab77b2d8c31b4b9edc3
BLAKE2b-256 0d283fa1c2061d588184840e3e4ab17e6d318c744bb2fcb15ddb0c29b5bc0bb3

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 26.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0222a51972e42bc1c132761ea027b9086d710ff5fa5199af658955bd03bee4d8
MD5 ced3df389abcc4bc86fb8fbfad490aac
BLAKE2b-256 22fd130c64c2367d17e38d225b68719f4780f7b5ceb4d80bb99da5dff3f9cea7

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 27.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db119a3ec9d7ce42e98de3d014427d74fd92f1f7c40fc9dfe62b14601a9e83da
MD5 1f6c266ac6bdc933028e5dd373f24567
BLAKE2b-256 c45f71cdb528faa4252f6dc4f5c91f68276d530cadbd3c3a1c63386becd04703

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 26.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60e792b00f4cd6c5eadd814161cd046fa8418d83621d85d3e65aae28dc5b53ff
MD5 03189937b6eab194cfdbfd45130f4860
BLAKE2b-256 2e5c8fabb416ddbb7de9427be29005afd52edbfe2e12e2fdf7a5058959a71cbb

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 606e2bc7880d70448ff4359faa43a7c71743283010262fc142e1ca9fcb6937cf
MD5 3d33a62b75e56abe23f6e629ffd022a0
BLAKE2b-256 658179cc50cb74fb3acee6a17a218e38f3b23326965847ba339267a40606b920

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 66b250d102f0e49f3d2306353aaabb43f39da5ccfa4e84fe10ba8a25de85316c
MD5 ef14f97661803be610d4e850765f6230
BLAKE2b-256 a64a09cb6756b1c203c44b74bc1741e91e70dec877de6aabc675a2ae276a89ab

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aa166ce529cfbce6b3afaabdc4cdbfdf9e3e3d82413c709d679ff374eb76d5e9
MD5 5e13cb18b39e2d05c436a512eab895ec
BLAKE2b-256 b5414f44a7502844f714f44f6de70ac6360ee7ee6bb053258cb994d6657ccf40

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 257c6df4393116114f296f7a02f51db9a2117f68c3ae93bbe218fa79e6521df3
MD5 c5945cdb5337d7799947a51f921cd87b
BLAKE2b-256 6c6e2260f37ec915cf16f6008b9bf639081eb3efcbc09e37b5bb25b3d29328a5

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7711c46452b44332352d344b5818ad8faf04596efaf837d8114aa9984e4a9610
MD5 89fe4fb635bac41ea6fd636300e9a52f
BLAKE2b-256 7850b6e195025978174a06b7997bd59ed8663c56152e72401f08f46141ae56c6

See more details on using hashes here.

File details

Details for the file uv-0.11.29-py3-none-linux_armv6l.whl.

File metadata

  • Download URL: uv-0.11.29-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.11.29-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 2dc8012a693b6bb9ec17dcb2c2345cf273ccad06ae2ab4a8c7a0833955812c75
MD5 c62ac8b7a3617f010c9f8d3b28197a17
BLAKE2b-256 abe5bb0c6be0c1d3479cd23013ef31e0276ecf4dfca93aa3ebf9f95a26c50558

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page